home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ IE Persistent Caching.xpl
< prev
next >
Wrap
Text File
|
2003-11-20
|
1KB
|
53 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Internet\Internet Explorer\System"
"NAME"="Persistent Caching"
"VERSION"="1.02"
"OSVERSION"="100"
"LANGUAGE"="VBScript"
"TEXT 1"="Disable IE Persistent Caching"
"DESCRIPTION 1"="Checked box disables Persistent Caching; unchecked [cleared] box enables Persistent Caching [default]."
"DESCRIPTION 2"="After Persistent Cache is disabled, clearing TIF & History folders from Tools/Internet Options/General Tab will purge retained URLs."
"DESCRIPTION 3"="NOTE: This plug-in will only work for IE 5.x and above."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Want More Fun? Use Deltree to kick Windows around."
sP="HKLM\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\"
v1="Persistent" 'Binary
Sub Plugin_Initialize
if RegPathExists(sP) then
s=RegReadValue(sP&v1)
if s="00000000" then SetUIElement 1,true
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sp&v1,"00000000",3)
else
Call RegWriteValue(sp&v1,"01000000",3)
end if
End Sub
Sub Plugin_Terminate
End Sub